<!--
// ============================================================
// == X12 MUONLINE SERVER EMULATOR
// == www.muemu.tech
// == (C) 2021 MUEMU
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// == File is a part of MUEMU MuOnline Server files.
// ============================================================
//
// ### MonsterMapItemDrop::DropItem ###
//	MonsterID: Index of monster to drop item from, see IGC_MonsterList.xml, every monster may be defined multiple times in the files
//	MonsterElement:
//		~ 0: no element
//		~ 1: Fire element
//		~ 2: Water element
//		~ 3: Earth element
//		~ 4: Wind element
//		~ 5: Darkness element
//		~ -1: Any or no element
//
//	Cat: Category of item, see ItemList.xml
//	Index: Index of item, see ItemList.xml
//	MinLevel: Minimum item level to drop, 0-15
//	MaxLevel: Maximum item level to drop, 0-15
//	Durability: durability of item to drop, 0 indicates automatically generated valid durability
//	Skill:
//		~ 0: no skill
//		~ 1: with skill
//		~ 2: random with 50% chance
//
//	Luck:
//		~ 0: no luck
//		~ 1: with luck
//		~ 2: random with 50% chance
//
//	Option:
//
//	Exc:
//		-
//	SocketCount: 0 ~ no Socket slots, 1 ~ up to one slot, 2 ~ up to two slots, 3 ~ up to three slots, 4 ~ up to four slots, 5 ~ up to five slots, 6 ~ Random Slot
//
//	Element: 0 ~ no Elemental attribute, 1 ~ Fire, 2 ~ Water, 3 ~ Earth, 4 ~ Wind, 5 ~ Darkness, -1 ~ Random attribute
//
//	Duration: Allows to drop expiable item, seconds (not every item is suitable for period items system, please test before putting on live server)
//
//	Rate: Item drop rate, max value for individual item is 100000
//
// STRICTLY NO COMMENTS INSIDE TAGS 
-->